home *** CD-ROM | disk | FTP | other *** search
- /* event.h
-
- This contains all the code for routing and handling events.
-
- Michael Bishop - August 21 1996
- Nick Thompson
- (c)1994-96 Apple computer Inc., All Rights Reserved
-
- */
-
- #ifndef _BP_EVENT_H_
- #define _BP_EVENT_H_
-
- #include <Events.h>
-
- void Event_HandleKeyPress(EventRecord *event) ;
- void Event_HandleOSEvent(EventRecord *event) ;
- void Event_DoOSEvent(EventRecord theEvent);
- void Event_DoSuspendResume(EventRecord theEvent);
- void Event_DoNull(void);
-
- #endif
-
-